home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-24 | 2.3 KB | 79 lines | [TEXT/MPS ] |
- ;
- ; File: AEPackObject.a
- ;
- ; Contains: AppleEvents object packing Interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Package: Universal Interfaces 2.2 in “MPW” on ETO #20
- ;
- ; Copyright: © 1984-1995 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Bugs?: If you find a problem with this file, use the Apple Bug Reporter
- ; stack. Include the file and version information (from above)
- ; in the problem description and send to:
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__AEPACKOBJECT__') = 'UNDEFINED' THEN
- __AEPACKOBJECT__ SET 1
-
-
- IF &TYPE('__APPLEEVENTS__') = 'UNDEFINED' THEN
- include 'AppleEvents.a'
- ENDIF
- ; include 'Errors.a' ;
- ; include 'ConditionalMacros.a' ;
- ; include 'Types.a' ;
- ; include 'Memory.a' ;
- ; include 'MixedMode.a' ;
- ; include 'OSUtils.a' ;
- ; include 'Events.a' ;
- ; include 'Quickdraw.a' ;
- ; include 'QuickdrawText.a' ;
- ; include 'EPPC.a' ;
- ; include 'AppleTalk.a' ;
- ; include 'Files.a' ;
- ; include 'Finder.a' ;
- ; include 'PPCToolbox.a' ;
- ; include 'Processes.a' ;
- ; include 'Notification.a' ;
- ;
- ; pascal OSErr CreateOffsetDescriptor(long theOffset, AEDesc *theDescriptor)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION CreateOffsetDescriptor
- ENDIF
-
- ;
- ; pascal OSErr CreateCompDescriptor(DescType comparisonOperator, AEDesc *operand1, AEDesc *operand2, Boolean disposeInputs, AEDesc *theDescriptor)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION CreateCompDescriptor
- ENDIF
-
- ;
- ; pascal OSErr CreateLogicalDescriptor(AEDescList *theLogicalTerms, DescType theLogicOperator, Boolean disposeInputs, AEDesc *theDescriptor)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION CreateLogicalDescriptor
- ENDIF
-
- ;
- ; pascal OSErr CreateObjSpecifier(DescType desiredClass, AEDesc *theContainer, DescType keyForm, AEDesc *keyData, Boolean disposeInputs, AEDesc *objSpecifier)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION CreateObjSpecifier
- ENDIF
-
- ;
- ; pascal OSErr CreateRangeDescriptor(AEDesc *rangeStart, AEDesc *rangeStop, Boolean disposeInputs, AEDesc *theDescriptor)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION CreateRangeDescriptor
- ENDIF
-
- ENDIF ; __AEPACKOBJECT__
-